projects
/
babl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d9415c
)
Add extern "C" to the header for C++ friendliness.
author
Hubert Figuiere
<hub@figuiere.net>
Sat, 16 May 2009 07:27:03 +0000
(
03:27
-0400)
committer
Hubert Figuiere
<hub@figuiere.net>
Sat, 16 May 2009 07:27:03 +0000
(
03:27
-0400)
ChangeLog
patch
|
blob
|
history
babl/babl.h
patch
|
blob
|
history
diff --git
a/ChangeLog
b/ChangeLog
index af0850ae5761d9cc74bcd10deb322c3a5a4d8593..13a62ce0734c74d765728ee4432286def23a80f3 100644
(file)
--- a/
ChangeLog
+++ b/
ChangeLog
@@
-1,3
+1,9
@@
+2009-05-16 Hubert Figuiere <hub@figuiere.net>
+
+ Add extern "C" to the header for C++ friendliness.
+
+ * babl/babl.h
+
2009-04-04 Martin Nordholts <martinn@svn.gnome.org>
Bug 568576 – [PATCH] undefined operation fix
diff --git
a/babl/babl.h
b/babl/babl.h
index c9d7608ac5937cbe0cffc97b03513122b41a2150..44276a497e7410f49192b85b006a4c037987bf48 100644
(file)
--- a/
babl/babl.h
+++ b/
babl/babl.h
@@
-19,6
+19,10
@@
#ifndef _BABL_H
#define _BABL_H
+#ifdef __cplusplus
+extern "C" {
+#endif
+
#define BABL_INSIDE_BABL_H
#include <babl/babl-macros.h>
#include <babl/babl-types.h>
@@
-192,4
+196,8
@@
Babl * babl_conversion_new (void *first_arg,
#endif
+#ifdef __cplusplus
+}
+#endif
+
#endif